home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / wsc4vb24 / access.txt next >
Text File  |  1999-06-01  |  1KB  |  31 lines

  1. *** How To Access WSC from ACCESS ***
  2.  
  3. Refer to VBA32.TXT for 32-bit ACCESS (ACCESS 97 and later).
  4.  
  5. The following example has been tested using Access 2.0 and WSC16.DLL.
  6.  
  7. (1) Copy WSC16.DLL to the ACCESS directory.
  8. (2) Using a text editor, copy WSC16.BAS [or WSC32.BAS] and MODULE.BAS to the clipboard.
  9.     You may want to modify MODULE.BAS first, such as changing the port and baud rate from the
  10.     values in MODULE code (COM1 at 9600 baud).
  11. (3) Start ACCESS and invoke the Design Tool.
  12. (4) Choose the MODULE tab. A new module window will appear.
  13. (5) Paste the contents of the clipboard (from step 2 above) and save the module.
  14. (6) Choose the MODULE tab, double click the module name, choose "Run", then
  15.     "Compile Loaded Modules" from the menu bar.
  16. (7) Select the MACRO design tool. Create three macros:
  17.  
  18.      Action    Function Name
  19.      ======    =============
  20.   1. RunCode   OpenPort()
  21.   2. RunCode   PutAT()
  22.   3. RunCode   ClosePort()
  23.  
  24. (8) Connect your serial cable to a serial device such as a modem or connect to another computer
  25.     using a null modem cable.
  26. (9) Run macros 1, 2, and 3 in order. An "AT" should be sent to the serial device.
  27.  
  28.  
  29.  
  30.  
  31.